type runtime.arenaHint

11 uses

	runtime (current package)
		malloc.go#L550: 			hint := (*arenaHint)(mheap_.arenaHintAlloc.alloc())
		malloc.go#L617: 		hint := (*arenaHint)(mheap_.arenaHintAlloc.alloc())
		malloc.go#L625: 		userArenaHint := (*arenaHint)(mheap_.arenaHintAlloc.alloc())
		malloc.go#L650: func (h *mheap) sysAlloc(n uintptr, hintList **arenaHint, register bool) (v unsafe.Pointer, size uintptr) {
		malloc.go#L724: 		hint := (*arenaHint)(h.arenaHintAlloc.alloc())
		malloc.go#L727: 		hint = (*arenaHint)(h.arenaHintAlloc.alloc())
		mheap.go#L162: 	arenaHints *arenaHint
		mheap.go#L223: 		arenaHints *arenaHint
		mheap.go#L315: type arenaHint struct {
		mheap.go#L319: 	next *arenaHint
		mheap.go#L758: 	h.arenaHintAlloc.init(unsafe.Sizeof(arenaHint{}), nil, nil, &memstats.other_sys)